home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0" encoding="utf-8"?>
- <html><head><title>Space Function [Runtime]</title><meta name="filename" content="text/sbasic/common/03120201"/><meta name="language" content="en-US"/><help:css-file-link xmlns:help="http://openoffice.org/2000/help"/><!--The CSS style header method for setting styles--><style type="text/css">
-
- p.P1{
- }
- p.P2{
- }
- span.T1{
- font-weight:bold;}
- </style></head><body>
-
-
- <help:to-be-embedded Eid="space" xmlns:help="http://openoffice.org/2000/help">
- <p class="Head1"><help:link Id="66606">Space Function [Runtime]</help:link></p>
- <p class="Paragraph">Returns a string that consists of a specified amount of spaces.</p>
- </help:to-be-embedded>
- <p class="Paragraph"><span class="T1">Syntax</span>:</p>
- <p class="Paragraph">Space (n As Integer) <help:key-word value="Space" tag="kw66606_1" xmlns:help="http://openoffice.org/2000/help"/></p>
- <p class="Paragraph"><span class="T1">Return value</span>:</p>
- <p class="Paragraph">String</p>
- <p class="Paragraph"><span class="T1">Parameter</span>:</p>
- <p class="Paragraph">n: Numeric expression that defines the number of spaces in the string.</p>
- <p class="P2">Example:</p>
- <p class="PropText">Sub ExampleSpace</p>
- <p class="PropText">Dim sText As String,sOut As String</p>
- <p class="PropText">DIm iLen As Integer</p>
- <p class="PropText">iLen = 10</p>
- <p class="PropText">sText = "Las Vegas"</p>
- <p class="PropText">sOut <text:s text:c="" xmlns:text="http://openoffice.org/2000/text"/>= sText & Space(iLen) & <text:s text:c="" xmlns:text="http://openoffice.org/2000/text"/>sText & Chr(13) &_</p>
- <p class="PropText">sText & Space(iLen*2) & <text:s text:c="" xmlns:text="http://openoffice.org/2000/text"/>sText & Chr(13) &_</p>
- <p class="PropText">sText & Space(iLen*4) & <text:s text:c="" xmlns:text="http://openoffice.org/2000/text"/>sText & Chr(13)</p>
- <p class="PropText">msgBox sOut,0,"Info:"</p>
- <p class="PropText">End Sub</p>
- <p class="PropText"/>
- </body></html>